GET api/parameters/values/current?paramValueRequests[0].Code={paramValueRequests[0].Code}&paramValueRequests[0].Category={paramValueRequests[0].Category}&paramValueRequests[0].DepartmentId={paramValueRequests[0].DepartmentId}&paramValueRequests[1].Code={paramValueRequests[1].Code}&paramValueRequests[1].Category={paramValueRequests[1].Category}&paramValueRequests[1].DepartmentId={paramValueRequests[1].DepartmentId}&date={date}

Fetches the specified parameter values.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
paramValueRequests

Array of paramter value requests.

Collection of CurrentParameterValueRequestDTO

Required

date

Date for which to fetch parameter values.

date

None.

Body Parameters

None.

Response Information

Resource Description

Collection of ParameterValueResponseDTO
NameDescriptionTypeAdditional information
Category

Category to which the parameter belongs to.

string

None.

Name

Parameter name.

string

None.

Value

Parameter value, type is that of the corresponding parameter.

Object

None.

DepatmentId

ID for the department that the parameter value refers to.

integer

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "Category": "sample string 1",
    "Name": "sample string 2",
    "Value": {},
    "DepatmentId": 1
  },
  {
    "Category": "sample string 1",
    "Name": "sample string 2",
    "Value": {},
    "DepatmentId": 1
  }
]

text/html

Sample:
[{"Category":"sample string 1","Name":"sample string 2","Value":{},"DepatmentId":1},{"Category":"sample string 1","Name":"sample string 2","Value":{},"DepatmentId":1}]

application/xml, text/xml

Sample:
<ArrayOfParameterValueResponseDTO xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.WebAPI.DTOs">
  <ParameterValueResponseDTO>
    <Category>sample string 1</Category>
    <DepatmentId>1</DepatmentId>
    <Name>sample string 2</Name>
    <Value />
  </ParameterValueResponseDTO>
  <ParameterValueResponseDTO>
    <Category>sample string 1</Category>
    <DepatmentId>1</DepatmentId>
    <Name>sample string 2</Name>
    <Value />
  </ParameterValueResponseDTO>
</ArrayOfParameterValueResponseDTO>